Uses of Class
edu.claflin.finder.logic.Edge
-
Packages that use Edge Package Description edu.claflin.finder Subgraph Finder - Used to find and locate subgraphs within a network.edu.claflin.finder.algo Contains the Algorithm code for finding bipartite subgraphs.edu.claflin.finder.logic Contains the data structure and processing code-base.edu.claflin.finder.logic.comp Contains Comparator implementations for expansion ordering.edu.claflin.finder.logic.cygrouper -
-
Uses of Edge in edu.claflin.finder
Method parameters in edu.claflin.finder with type arguments of type Edge Modifier and Type Method Description private static AlgorithmMain. parseAlgorithm(java.lang.String algorithmCode, java.util.HashMap<java.lang.String,java.lang.Boolean> config, java.util.ArrayList<Condition> conditions, java.util.Comparator<Edge> comparator)Parses an algorithm code string for returning the appropriate Algorithm object. -
Uses of Edge in edu.claflin.finder.algo
Fields in edu.claflin.finder.algo declared as Edge Modifier and Type Field Description private EdgePrim.DistanceRecord. eMethods in edu.claflin.finder.algo that return Edge Modifier and Type Method Description EdgePrim.DistanceRecord. getEdge()Methods in edu.claflin.finder.algo with parameters of type Edge Modifier and Type Method Description intDijkstraShortestPath.EdgeComparator. compare(Edge e1, Edge e2)Method parameters in edu.claflin.finder.algo with type arguments of type Edge Modifier and Type Method Description private doubleDijkstraShortestPath. getWeight(java.util.List<Edge> E)private doubleKruskal. getWeight(java.util.List<Edge> E)private doublePrim. getWeight(java.util.List<Edge> E)Constructors in edu.claflin.finder.algo with parameters of type Edge Constructor Description DistanceRecord(int n, Edge ed) -
Uses of Edge in edu.claflin.finder.logic
Fields in edu.claflin.finder.logic with type parameters of type Edge Modifier and Type Field Description private java.util.ArrayList<Edge>Graph. edgeListThe list of edges added to the graph.Methods in edu.claflin.finder.logic that return Edge Modifier and Type Method Description EdgeEdge. duplicate(Node source, Node destination)Attempts to duplicate an Edge based on the supplied parameters.EdgeGraph. getEdge(Node source, Node destination)Locates an Edge object in the edgeList and returns it.Methods in edu.claflin.finder.logic that return types with arguments of type Edge Modifier and Type Method Description java.util.List<Edge>Graph. getEdgeList()Returns the list of edges in the graph.java.util.ArrayList<Edge>Graph. getEdgesBack(java.util.List<Node> nodes)Gets the list edges of this Graph that involve the nodes in the given listMethods in edu.claflin.finder.logic with parameters of type Edge Modifier and Type Method Description booleanGraph. addEdge(Edge edge)Adds an edge to the Graph.Method parameters in edu.claflin.finder.logic with type arguments of type Edge Modifier and Type Method Description booleanGraph. addEdges(java.util.List<Edge> edges)Adds a list of Edges to the graph. -
Uses of Edge in edu.claflin.finder.logic.comp
Methods in edu.claflin.finder.logic.comp with parameters of type Edge Modifier and Type Method Description intEdgeWeightComparator. compare(Edge o1, Edge o2)Compares the edges based on the D data held by the edge. -
Uses of Edge in edu.claflin.finder.logic.cygrouper
Constructor parameters in edu.claflin.finder.logic.cygrouper with type arguments of type Edge Constructor Description CygrouperAssembler(java.util.List<Edge> regularEdges)
-